home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / string / strcpy.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  276b  |  31 lines

  1.  
  2. /*
  3.  *  STRCPY.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  *
  7.  */
  8.  
  9. #include <string.h>
  10.  
  11. char *
  12. strcpy(d, s)
  13. char *d;
  14. const char *s;
  15. {
  16.     char c;
  17.     char *base = d;
  18.  
  19.     c;
  20.  
  21.     while(c = *s) {
  22.     *d = c;
  23.     ++s;
  24.     ++d;
  25.     }
  26.     *d = 0;
  27.     return(base);
  28. }
  29.  
  30.  
  31.